home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GameWare Collection
/
GameWare Collection (CMS Software) (1993).iso
/
go.bat
next >
Wrap
DOS Batch File
|
1993-03-02
|
664b
|
33 lines
@echo off
cd \
call \thanks.bat
cls
cd \gameware
if "%1"=="color" goto color
if "%1"=="COLOR" goto color
if "%1"=="Color" goto color
if "%1"=="Mono" goto mono
if "%1"=="mono" goto mono
if "%1"=="MONO" goto mono
goto oops
:color
gameware color
goto end
:mono
gameware mono
goto end
:oops
cls
echo.
echo.
echo !!!!!!!! WARNING !!!!!!!!
echo
echo You have tried to install the ShareWare Online Retrieval System
echo without one of the required options. Please execute GO MONO or
echo GO COLOR to install the ShareWare OnLine Retrieval System.
echo.
pause
cd ..
goto end
:end